
div.b_ServicesGrid{
    --section_padding_block:40px;
}
@media (width >= 1000px) {
    div.b_ServicesGrid{
        --section_padding_block:80px;
    }
}


/*Intro*/
.b_ServicesGrid .intro{
    max-width:770px;
    display:grid;
    gap:20px;
    margin-bottom:48px;
}
.b_ServicesGrid .h5{
    margin-bottom:12px;
}
/*Large*/
@media (width >= 1000px) {
    .b_ServicesGrid .intro{
        gap:24px;
    }
    .b_ServicesGrid .h5{
        margin-bottom:10px;
    }
}


/* .b_ServicesGrid .repeater_services{
    margin-top:48px;
} */
/*Medium*/
/* @media (width >= 1000px) {
    .b_ServicesGrid .repeater_services{
        margin-top:56px;
    }
} */
.b_ServicesGrid .service{
    display: grid;
    gap: 14px;
}
.b_ServicesGrid img{
    border-radius:30px;
    margin-bottom:6px;
    aspect-ratio: 1.6 / 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}




/* GRIDS */

/*THREE COLUMN GRID*/
.b_ServicesGrid .three_columns {
    display: grid;
    gap: 40px;
    justify-content: center;
    flex-direction: column;
    align-items: baseline;
}
@media (width >= 1000px){
    .b_ServicesGrid .three_columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 80px 30px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .grid.three_columns .page {
        width: calc(33% - 20px);
        /* width: calc(50% - 90px); */
    }
}



/*TWO COLUMN GRID*/
.b_ServicesGrid .two_columns {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    align-items: baseline;
}
/*Medium Show In Columns*/
@media (width >= 1000px){
    .b_ServicesGrid .two_columns {
        grid-template-columns: 1fr 1fr;
    }
}



/* When two are stacked */
.b_ServicesGrid + .b_ServicesGrid{
    padding-block: 0 64px;
}
@media (width >= 1000px){
    .b_ServicesGrid + .b_ServicesGrid {
        padding-block: 0 120px;
    }
}